Welcome![Sign In][Sign Up]
Location:
Search - Hamming code

Search list

[Compress-Decompress algrithmshaiming

Description: 该程序主要用于信息论与编码中海明码的课程设计,实现海明码的编码、译码、纠错,是一个不错的程序-The program is mainly used in information theory and coding Hamming code of curriculum design, the realization of hamming code encoding, decoding, error correction, is a good procedure
Platform: | Size: 1024 | Author: 何安 | Hits:

[Other Embeded programhanmingmadecode

Description: 汉明码的译码c语言实现,汉明码可以检查多位而只能纠正以为错误-Hamming code c language realize the decoding, hamming code can check the number but only to correct that error
Platform: | Size: 2048 | Author: charles | Hits:

[VHDL-FPGA-VerilogVHDL

Description: VHDL程序集锦,很多有用程序,英文版其中有汉明码编译码,优先译码等等。-VHDL Collection procedures, many useful procedures, the English version of them hamming code encoding and decoding, the priority decoder and so on.
Platform: | Size: 168960 | Author: 萍果 | Hits:

[VHDL-FPGA-Veriloghanmingjiaozhi

Description: 通过VHDL实现汉明码,交织码的编码与解码,开发环境Quartus-Through VHDL realize hamming code, interleaving the encoding and decoding code, development environment, Quartus
Platform: | Size: 3072 | Author: mayue | Hits:

[Dialog_Window7-4hanming

Description: systerm view软件实现的7-4汉明码编码译码器。-systerm view of 7-4 software codec hamming code.
Platform: | Size: 3072 | Author: Amy | Hits:

[Other7

Description: (7,4)汉明码的编码程序,实现4位信息位后加三位监督位,组成7位码组-(7,4) hamming code encoding process, realize information-bit 4 after three supervision, and composed of seven yards Group
Platform: | Size: 1024 | Author: Hargie | Hits:

[SCMHamming_Send

Description: 单片机汉明码编码程序,8-4编码,编码后得数据通过串口发送出去-Singlechip hamming code encoding process ,8-4 encoding, the encoded data sent through the serial port
Platform: | Size: 21504 | Author: 王晴 | Hits:

[matlabtongbu_jiazhentou

Description: 64路OFDM系统MATLAB仿真,采用桢头同步,信道编码采用(7,4)汉明码,信道估计及修正采用LS方法,峰均抑制采用直接削波的方法,希望对大家有所帮助。-64 Road OFDM system MATLAB simulation, using the first-ching synchronization, channel coding used (7,4) hamming code, channel estimation and the amendment to the use of LS method, peak-to-average direct clipping suppression method, and they hope to be helpful to everyone.
Platform: | Size: 6144 | Author: xiaoyuer | Hits:

[matlaballweight

Description: 一个很有用的函数,功能是产生规定字长以及规定汉明重量的码字,常用于channel coding开发-A useful function, function is to have the provisions of word length and weight of the provisions of Hamming code word, commonly used in the development of channel coding
Platform: | Size: 1024 | Author: 于凯 | Hits:

[Windows Develophamming

Description: 本实验实现了任何字符的输入 然后通过转化成为含有校验位的海明码-Experimental realization of any of the characters in the input and then into a parity bit contains the Hamming code
Platform: | Size: 2048 | Author: william | Hits:

[matlabhaming_encoding

Description: 汉明码编码仿真程序,在Matlab环境下仿真,适用于初学者。-Hamming code encoding simulation program, in the Matlab simulation environment for beginners.
Platform: | Size: 1024 | Author: wwei | Hits:

[VHDL-FPGA-Verilog74HammingCode

Description: 用VHDL语言编写的可以实现(7,4)汉明码编解码的程序。-Using VHDL language can be achieved (7,4) Hamming Code Codec procedures.
Platform: | Size: 677888 | Author: 王磊 | Hits:

[VHDL-FPGA-VeriloghammingDec

Description: hamming/汉明码的解码代码,在通信中常常用到汉明码-hamming/hamming code decoder code, usually used in communication Hamming Code
Platform: | Size: 1024 | Author: leng | Hits:

[SCMhamming_code

Description: 此程序实现无线信标定位,GPS产生的信号经过(7,4)汉明码编码后发送,接收端解码得到发送端坐标。程序分为发射和接收2部分,在Keil C下编译实现。-This procedure positioning wireless beacons, GPS signal generated by (7,4) hamming code is encoded to send, receive decoding client coordinates to be the sending end. Transmitting and receiving procedures are divided into 2 parts of the Keil C compiler under implementation.
Platform: | Size: 89088 | Author: 孙英晖 | Hits:

[matlabMATLAB

Description: (7,4)汉明码的编译码程序,基于MTLAB语言-Encoding and decoding procedures of (7,4)Hamming code
Platform: | Size: 17408 | Author: 刘薇 | Hits:

[matlabSimulation

Description: 汉明码的仿真实现以及调试,结果演示。是基于MatLAB环境用simulink仿真的-Hamming code and debugging the simulation
Platform: | Size: 34816 | Author: 刘薇 | Hits:

[source in ebookHammingDecoder

Description: -- Hamming Decoder -- This Hamming decoder accepts an 8-bit Hamming code (produced by the encoder above) and performs single error correction and double error detection. -- download from: www.pld.com.cn & www.fpga.com.cn LIBRARY ieee USE ieee.std_logic_1164.ALL ENTITY hamdec IS PORT(hamin : IN BIT_VECTOR(0 TO 7) --d0 d1 d2 d3 p0 p1 p2 p4 dataout : OUT BIT_VECTOR(0 TO 3) --d0 d1 d2 d3 sec, ded, ne : OUT BIT) --diagnostic outputs END hamdec ARCHITECTURE ver1 OF hamdec IS BEGIN --- Hamming Decoder -- This Hamming decoder accepts an 8-bit Hamming code (produced by the encoder above) and performs single error correction and double error detection. -- download from: www.pld.com.cn & www.fpga.com.cn LIBRARY ieee USE ieee.std_logic_1164.ALL ENTITY hamdec IS PORT(hamin : IN BIT_VECTOR(0 TO 7) --d0 d1 d2 d3 p0 p1 p2 p4 dataout : OUT BIT_VECTOR(0 TO 3) --d0 d1 d2 d3 sec, ded, ne : OUT BIT) --diagnostic outputs END hamdec ARCHITECTURE ver1 OF hamdec IS BEGIN
Platform: | Size: 4096 | Author: djs | Hits:

[Communicationhamming

Description: Hamming码编译码的算法及实现 海军工程大学电子工程学院学报-Hamming code encoding and decoding algorithm and the realization of the Naval University of Engineering School of Electronic Engineering Journal
Platform: | Size: 93184 | Author: peng | Hits:

[3G developHANMINGMA

Description: 7,4汉明码的编译码原理,用VHDL语言实现的,需要的请下载-Hamming code encoding and decoding of 7,4 principle, using VHDL language and the clear need to download
Platform: | Size: 1024 | Author: mayuan | Hits:

[Other74hanmingma

Description: 7,4汉明码的编码和译码程序,用MATLAB语言实现的-7,4 hamming code encoding and decoding process, using the MATLAB language
Platform: | Size: 1024 | Author: mayuan | Hits:
« 1 23 4 5 6 7 8 9 10 ... 24 »

CodeBus www.codebus.net